github.com/refraction-networking/utls.serverHandshakeStateTLS13.clientHello (field)
49 uses
github.com/refraction-networking/utls (current package)
handshake_server.go#L53: clientHello: clientHello,
handshake_server_tls13.go#L48: clientHello *clientHelloMsg
handshake_server_tls13.go#L117: if len(hs.clientHello.supportedVersions) == 0 {
handshake_server_tls13.go#L131: for _, id := range hs.clientHello.cipherSuites {
handshake_server_tls13.go#L143: if len(hs.clientHello.compressionMethods) != 1 ||
handshake_server_tls13.go#L144: hs.clientHello.compressionMethods[0] != compressionNone {
handshake_server_tls13.go#L155: if len(hs.clientHello.secureRenegotiation) != 0 {
handshake_server_tls13.go#L160: if hs.clientHello.earlyData && c.quic != nil {
handshake_server_tls13.go#L161: if len(hs.clientHello.pskIdentities) == 0 {
handshake_server_tls13.go#L165: } else if hs.clientHello.earlyData {
handshake_server_tls13.go#L176: hs.hello.sessionId = hs.clientHello.sessionId
handshake_server_tls13.go#L180: if !hasAESGCMHardwareSupport || !aesgcmPreferred(hs.clientHello.cipherSuites) {
handshake_server_tls13.go#L187: hs.suite = mutualCipherSuiteTLS13(hs.clientHello.cipherSuites, suiteID)
handshake_server_tls13.go#L210: return !slices.Contains(hs.clientHello.supportedCurves, group)
handshake_server_tls13.go#L217: for _, ks := range hs.clientHello.keyShares {
handshake_server_tls13.go#L233: for _, ks := range hs.clientHello.keyShares {
handshake_server_tls13.go#L298: selectedProto, err := negotiateALPN(c.config.NextProtos, hs.clientHello.alpnProtocols, c.quic != nil)
handshake_server_tls13.go#L307: for _, v := range hs.clientHello.supportedVersions {
handshake_server_tls13.go#L314: if hs.clientHello.quicTransportParameters == nil {
handshake_server_tls13.go#L318: c.quicSetTransportParameters(hs.clientHello.quicTransportParameters)
handshake_server_tls13.go#L320: if hs.clientHello.quicTransportParameters != nil {
handshake_server_tls13.go#L326: c.serverName = hs.clientHello.serverName
handshake_server_tls13.go#L338: for _, mode := range hs.clientHello.pskModes {
handshake_server_tls13.go#L348: if len(hs.clientHello.pskIdentities) != len(hs.clientHello.pskBinders) {
handshake_server_tls13.go#L352: if len(hs.clientHello.pskIdentities) == 0 {
handshake_server_tls13.go#L356: for i, identity := range hs.clientHello.pskIdentities {
handshake_server_tls13.go#L430: clientHelloBytes, err := hs.clientHello.marshalWithoutBinders()
handshake_server_tls13.go#L437: if !hmac.Equal(hs.clientHello.pskBinders[i], pskBinder) {
handshake_server_tls13.go#L442: if c.quic != nil && hs.clientHello.earlyData && i == 0 &&
handshake_server_tls13.go#L448: if err := transcriptMsg(hs.clientHello, transcript); err != nil {
handshake_server_tls13.go#L507: if len(hs.clientHello.supportedSignatureAlgorithms) == 0 {
handshake_server_tls13.go#L511: certificate, err := c.config.getCertificate(clientHelloInfo(hs.ctx, c, hs.clientHello))
handshake_server_tls13.go#L520: hs.sigAlg, err = selectSignatureScheme(c.vers, certificate, hs.clientHello.supportedSignatureAlgorithms)
handshake_server_tls13.go#L551: if err := transcriptMsg(hs.clientHello, hs.transcript); err != nil {
handshake_server_tls13.go#L577: hkdf.Extract(hs.suite.hash.New, hs.clientHello.random, nil),
handshake_server_tls13.go#L660: if illegalClientHelloChange(clientHello, hs.clientHello) {
handshake_server_tls13.go#L666: hs.clientHello = clientHello
handshake_server_tls13.go#L734: echTranscript.Write(hs.clientHello.original)
handshake_server_tls13.go#L740: hkdf.Extract(hs.suite.hash.New, hs.clientHello.random, nil),
handshake_server_tls13.go#L748: if err := transcriptMsg(hs.clientHello, hs.transcript); err != nil {
handshake_server_tls13.go#L779: err := c.config.writeKeyLog(keyLogLabelClientHandshake, hs.clientHello.random, clientSecret)
handshake_server_tls13.go#L784: err = c.config.writeKeyLog(keyLogLabelServerHandshake, hs.clientHello.random, serverSecret)
handshake_server_tls13.go#L804: if len(hs.c.config.EncryptedClientHelloKeys) > 0 && len(hs.clientHello.encryptedClientHello) > 0 && hs.echContext == nil {
handshake_server_tls13.go#L849: certMsg.scts = hs.clientHello.scts && len(hs.cert.SignedCertificateTimestamps) > 0
handshake_server_tls13.go#L850: certMsg.ocspStapling = hs.clientHello.ocspStapling && len(hs.cert.OCSPStaple) > 0
handshake_server_tls13.go#L917: err := c.config.writeKeyLog(keyLogLabelClientTraffic, hs.clientHello.random, hs.trafficSecret)
handshake_server_tls13.go#L922: err = c.config.writeKeyLog(keyLogLabelServerTraffic, hs.clientHello.random, serverSecret)
handshake_server_tls13.go#L953: for _, pskMode := range hs.clientHello.pskModes {
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |